home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.lha / SmallEiffel / lib_se / function.e < prev    next >
Text File  |  1998-12-22  |  3KB  |  112 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr 
  4. --                       http://www.loria.fr/SmallEiffel
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it 
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later 
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License 
  11. -- for  more  details.  You  should  have  received a copy of the GNU General 
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class FUNCTION
  17.    
  18. inherit EFFECTIVE_ROUTINE;
  19.    
  20. creation make
  21.  
  22. feature
  23.  
  24.    result_type: TYPE;
  25.  
  26. feature 
  27.    
  28.    make(n: like names;  
  29.     fa: like arguments; t: like result_type; 
  30.     om: like obsolete_mark;
  31.     hc: like header_comment;
  32.     ra: like require_assertion; lv: like local_vars;
  33.     rb: like routine_body) is
  34.       require
  35.      t /= void
  36.       do
  37.      make_effective_routine(n,fa,om,hc,ra,lv,rb);
  38.      result_type := t;
  39.       end;
  40.    
  41.    to_run_feature(t: TYPE; fn: FEATURE_NAME): RUN_FEATURE_4 is
  42.       do
  43.      check_obsolete;
  44.      !!Result.make(t,fn,Current);
  45.       end;
  46.    
  47. feature {C_PRETTY_PRINTER}
  48.  
  49.    stupid_switch(up_rf: RUN_FEATURE; r: ARRAY[RUN_CLASS]): BOOLEAN is
  50.       local
  51.      rf4: RUN_FEATURE_4;
  52.      fn: FEATURE_NAME;
  53.      rf: RUN_FEATURE;
  54.      bcn: STRING;
  55.      i: INTEGER;
  56.       do
  57.      bcn := base_class.name.to_string;
  58.      if (us_item = first_name.to_string) and then
  59.         (us_array = bcn or else us_fixed_array = bcn)
  60.       then
  61.         from
  62.            i := r.upper;
  63.            Result := true;
  64.         until
  65.            not Result or else i = 0
  66.         loop
  67.            rf := r.item(i).dynamic(up_rf);
  68.            if rf.result_type.is_expanded then
  69.           Result := false;
  70.            end;
  71.            i := i - 1;
  72.         end;
  73.      else
  74.         rf4 ?= r.first.dynamic(up_rf);
  75.         if rf4.is_empty_or_null_body then
  76.            Result := true;
  77.         else
  78.            fn := rf4.is_attribute_reader;
  79.            if fn /= Void then
  80.           Result := cpp.stupid_switch(up_rf.run_class.get_feature(fn));
  81.            else
  82.           rf := rf4.is_direct_call_on_attribute;
  83.           if rf /= Void then
  84.              Result := cpp.stupid_switch(rf);
  85.           end;
  86.            end;
  87.         end;
  88.      end;
  89.       end;
  90.    
  91. feature {NONE}
  92.  
  93.    try_to_undefine_aux(fn: FEATURE_NAME;
  94.                bc: BASE_CLASS): DEFERRED_ROUTINE is
  95.       do
  96.      !DEFERRED_FUNCTION!Result.from_effective(fn,arguments,
  97.                           result_type,
  98.                           require_assertion,
  99.                           ensure_assertion,
  100.                           bc);
  101.       end;
  102.    
  103. feature {NONE}
  104.  
  105.    pretty_print_once_or_do is
  106.       do
  107.      fmt.keyword(fz_do);
  108.       end;
  109.      
  110. end -- FUNCTION
  111.  
  112.